summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-26 17:45:33 +0100
committerGitHub <noreply@github.com>2023-12-26 17:45:33 +0100
commit14dc41d4b331fffc7def584d65ead4aae6c1c118 (patch)
treeadcefc69361723789c5b9e864c5c04af5794aa6a
parentMerge pull request #12415 from ameerj/ogl-draw-auto (diff)
parentrenderer_vulkan: demote format assert to error log (diff)
downloadyuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.tar
yuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.tar.gz
yuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.tar.bz2
yuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.tar.lz
yuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.tar.xz
yuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.tar.zst
yuzu-14dc41d4b331fffc7def584d65ead4aae6c1c118.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index a6fbca69e..727bbd98d 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -755,10 +755,10 @@ VkFormat Device::GetSupportedFormat(VkFormat wanted_format, VkFormatFeatureFlags
// The wanted format is not supported by hardware, search for alternatives
const VkFormat* alternatives = GetFormatAlternatives(wanted_format);
if (alternatives == nullptr) {
- ASSERT_MSG(false,
- "Format={} with usage={} and type={} has no defined alternatives and host "
- "hardware does not support it",
- wanted_format, wanted_usage, format_type);
+ LOG_ERROR(Render_Vulkan,
+ "Format={} with usage={} and type={} has no defined alternatives and host "
+ "hardware does not support it",
+ wanted_format, wanted_usage, format_type);
return wanted_format;
}
@@ -774,10 +774,10 @@ VkFormat Device::GetSupportedFormat(VkFormat wanted_format, VkFormatFeatureFlags
}
// No alternatives found, panic
- ASSERT_MSG(false,
- "Format={} with usage={} and type={} is not supported by the host hardware and "
- "doesn't support any of the alternatives",
- wanted_format, wanted_usage, format_type);
+ LOG_ERROR(Render_Vulkan,
+ "Format={} with usage={} and type={} is not supported by the host hardware and "
+ "doesn't support any of the alternatives",
+ wanted_format, wanted_usage, format_type);
return wanted_format;
}